home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / gfx / fract / fu1_61.lha / Formulas / LeeMandel3.Form < prev    next >
Text File  |  1994-04-13  |  226b  |  29 lines

  1. LeeMandel3
  2. {
  3.     {
  4.         mirrorx
  5.         x1=-2.0
  6.         x2= 2.0
  7.         y1=-2.0
  8.         y2= 2.0
  9.         bailout=2.0        ; Bailoutvalue
  10.     }
  11.     {
  12.         z=pixel
  13.         c=pixel*pixel
  14.         c=pixel-c
  15.     }
  16.     {
  17.         c=c/z
  18.         c=c+pixel
  19.         z=z*pixel
  20.         z=c-z
  21.         w=abs(z)
  22.     }
  23.     {
  24.         w>bailout
  25.     }
  26.     {
  27.     }
  28. }
  29.